body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* Modern Navbar */
.navbar-modern {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-brand {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-brand:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: left 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.download-nav {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 600;
    border: 2px solid transparent;
}

.download-nav:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Download Card */
.download-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.download-card:hover {
    transform: scale(1.05);
    border-color: rgba(139, 92, 246, 0.5);
}

.download-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Gallery */
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer-modern {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-modern .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .download-card {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Secondary Pages Background */
.secondary-background {
    background-image: url('images/fundo sem nome.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
} 

/* --- LOGIN MODAL E FORMULÁRIO --- */
.card {
  --main-col: #ffeba7;
  --bg-col: #2a2b38;
  --bg-field: #1f2029;
  width: 320px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  background: var(--bg-col);
  border-radius: 10px;
  border: 1px solid var(--main-col);
  user-select: none;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
}
.field {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5rem;
  gap: 0.5rem;
  background-color: var(--bg-field);
  border-radius: 4px;
}
.input-icon {
  width: 1em;
  color: var(--main-col);
  fill: var(--main-col);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-field {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  color: var(--main-col);
  padding: 0.5em 1em 0.5em 0;
  caret-color: var(--main-col);
}
.filed:has(.input-field:valid) {
  border: 1px solid var(--main-col);
}
.title {
  margin-bottom: 1rem;
  font-size: 1.5em;
  font-weight: 500;
  color: var(--main-col);
  text-shadow: 1px 1px 20px var(--main-col);
  text-transform: uppercase;
}
.btn {
  margin: 1rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.8em;
  text-transform: uppercase;
  padding: 0.6em 1.2em;
  background-color: var(--main-col);
  color: var(--bg-col);
  box-shadow: 0 8px 24px 0 rgb(255 235 167 / 20%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.btn-link {
  color: #f5f5f5;
  display: block;
  font-size: 0.75em;
  transition: color 0.3s ease-out;
}
.field input:focus::placeholder {
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover {
  background-color: var(--bg-field);
  color: var(--main-col);
  box-shadow: 0 8px 24px 0 rgb(16 39 112 / 20%);
}
.btn-link:hover {
  color: var(--main-col);
  text-decoration: underline;
}
/* Modal overlay */
#login-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
#login-modal-overlay.active {
  display: flex;
  opacity: 1;
}
#login-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #ffeba7;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.2s;
}
#login-modal-close:hover {
  color: #fff;
} 

/* Modal de Criar Conta (igual ao login) */
#register-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
#register-modal-overlay.active {
  display: flex;
  opacity: 1;
}
#register-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #ffeba7;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.2s;
}
#register-modal-close:hover {
  color: #fff;
} 

/* --- BOTÃO ANIMADO DE DOWNLOAD --- */
.download-animated-container {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 60px 0;
  min-height: 100px;
}
.download-animated-label {
  background-color: transparent;
  border: 2px solid rgb(91, 91, 240);
  display: flex;
  align-items: center;
  border-radius: 50px;
  width: 180px;
  min-width: 140px;
  max-width: 100vw;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 5px;
  position: relative;
}
.download-animated-label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  width: 8px;
  height: 8px;
  transition: all 0.4s ease;
  border-radius: 100%;
  margin: auto;
  opacity: 0;
  visibility: hidden;
}
.download-animated-label .input {
  display: none;
}
.download-animated-label .title {
  font-size: 17px;
  color: #fff;
  transition: all 0.4s ease;
  position: absolute;
  right: 18px;
  bottom: 14px;
  text-align: center;
}
.download-animated-label .title:last-child {
  opacity: 0;
  visibility: hidden;
}
.download-animated-label .circle {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: rgb(91, 91, 240);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  overflow: hidden;
}
.download-animated-label .circle .icon {
  color: #fff;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.download-animated-label .circle .square {
  aspect-ratio: 1;
  width: 15px;
  border-radius: 2px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.download-animated-label .circle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3333a8;
  width: 100%;
  height: 0;
  transition: all 0.4s ease;
}
.download-animated-label:has(.input:checked) {
  width: 57px;
  animation: installed 0.4s ease 3.5s forwards;
}
.download-animated-label:has(.input:checked)::before {
  animation: rotate 3s ease-in-out 0.4s forwards;
}
.download-animated-label .input:checked + .circle {
  animation:
    pulse 1s forwards,
    circleDelete 0.2s ease 3.5s forwards;
  rotate: 180deg;
}
.download-animated-label .input:checked + .circle::before {
  animation: installing 3s ease-in-out forwards;
}
.download-animated-label .input:checked + .circle .icon {
  opacity: 0;
  visibility: hidden;
}
.download-animated-label .input:checked ~ .circle .square {
  opacity: 1;
  visibility: visible;
}
.download-animated-label .input:checked ~ .title {
  opacity: 0;
  visibility: hidden;
}
.download-animated-label .input:checked ~ .title:last-child {
  animation: showInstalledMessage 0.4s ease 3.5s forwards;
}
@keyframes pulse {
  0% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    scale: 1;
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes installing {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(-90deg) translate(27px) rotate(0);
    opacity: 1;
    visibility: visible;
  }
  99% {
    transform: rotate(270deg) translate(27px) rotate(270deg);
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes installed {
  100% {
    width: 150px;
    border-color: rgb(35, 174, 35);
  }
}
@keyframes circleDelete {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes showInstalledMessage {
  100% {
    opacity: 1;
    visibility: visible;
    right: 56px;
  }
} 

/* Footer sempre no fundo */
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.footer-modern {
  margin-top: auto !important;
  width: 100%;
  position: relative;
  left: 0;
  bottom: 0;
}

/* Centralização e espaçamento do botão animado */
.download-animated-container {
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 40px 0 60px 0;
  min-height: 100px;
}

/* Corrigir largura e responsividade do botão animado */
.download-animated-label {
  width: 180px;
  min-width: 140px;
  max-width: 100vw;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .download-animated-label {
    width: 98vw;
    min-width: 120px;
  }
} 

/* --- AJUSTE FINAL BOTÃO ANIMADO DE DOWNLOAD --- */
.download-animated-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 80px 0;
  min-height: 120px;
}
.download-animated-label {
  width: 200px;
  min-width: 140px;
  max-width: 90vw;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 12px;
  background: transparent;
}
.download-animated-label .title {
  left: 60px;
  right: unset;
  bottom: 14px;
  width: 120px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  transition: all 0.4s ease;
}
.download-animated-label .title:last-child {
  left: 60px;
  right: unset;
  width: 120px;
  text-align: left;
}
.download-animated-label .circle {
  margin-right: 0;
}
@media (max-width: 600px) {
  .download-animated-label {
    width: 98vw;
    min-width: 120px;
    padding-left: 6px;
  }
  .download-animated-label .title {
    left: 54px;
    width: 90vw;
    font-size: 16px;
  }
} 

/* --- SOCIAL ICONS LATERAL --- */
.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 200;
  padding: 0.5rem 0.2rem;
  background: rgba(20,20,30,0.7);
  border-radius: 0 16px 16px 0;
  box-shadow: 2px 0 12px 0 rgba(0,0,0,0.08);
  transition: background 0.3s;
}
.social-sidebar:hover {
  background: rgba(20,20,30,0.95);
}
.social-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.social-sidebar .icon-content {
  margin: 0 10px;
  position: relative;
}
.social-sidebar .icon-content .tooltip {
  position: absolute;
  top: 20px;
  left: 40%;
  transform: translateX(50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}
.social-sidebar .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: 5px;
}
.social-sidebar .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.social-sidebar .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.social-sidebar .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.social-sidebar .icon-content a:hover {
  color: white;
}
.social-sidebar .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.social-sidebar .icon-content a:hover .filled {
  height: 100%;
}
.social-sidebar .icon-content a[data-social="linkedin"] .filled,
.social-sidebar .icon-content a[data-social="linkedin"] ~ .tooltip {
  background-color: #0274b3;
}
.social-sidebar .icon-content a[data-social="github"] .filled,
.social-sidebar .icon-content a[data-social="github"] ~ .tooltip {
  background-color: #24262a;
}
.social-sidebar .icon-content a[data-social="instagram"] .filled,
.social-sidebar .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(45deg,#405de6,#5b51db,#b33ab4,#c135b4,#e1306c,#fd1f1f);
}
.social-sidebar .icon-content a[data-social="youtube"] .filled,
.social-sidebar .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}
@media (max-width: 700px) {
  .social-sidebar {
    display: none;
  }
} 

/* --- CARTÃO DE PERFIL E AVATAR --- */
.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #222;
  border: 2px solid #ffeba7;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.12);
}
.profile-avatar:hover {
  box-shadow: 0 4px 16px 0 rgba(255,235,167,0.25);
}
.profile-dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 9999;
  display: none;
}
.profile-dropdown.active {
  display: block;
}
.profile-card-container {
  height: 294px;
  width: 240px;
  color: yellow;
  perspective: 800px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.profile-card {
  width: 100%;
  height: 100%;
  background: black;
  border-radius: 2rem;
  position: relative;
  transition: transform 1500ms;
  transform-style: preserve-3d;
}
.profile-card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10%;
  position: absolute;
  width: 50%;
  background-color: transparent;
  border: 2px solid black;
  top: 0;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0px 0px 10px 5px rgba(255, 255, 0, 0.7);
}
.profile-card-top-para {
  font-size: 16px;
  font-weight: bold;
}
.profile-card-container:hover > .profile-card {
  cursor: pointer;
  transform: rotateX(180deg) rotateZ(-180deg);
}
.profile-front,
.profile-back {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px 5px rgba(255, 255, 0, 0.7);
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.profile-back {
  background-color: black;
  transform: rotateX(180deg) rotateZ(-180deg);
}
.profile-heading {
  font-size: 22px;
  font-weight: bold;
}
.profile-follow {
  font-size: 16px;
  font-weight: 500;
}
.profile-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}
/* Edição de perfil */
.profile-edit-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.profile-edit-form input[type="text"],
.profile-edit-form input[type="password"] {
  border-radius: 8px;
  border: 1px solid #ffeba7;
  padding: 6px 10px;
  background: #222;
  color: #ffeba7;
  width: 80%;
}
.profile-edit-form input[type="file"] {
  color: #ffeba7;
  margin-top: 6px;
}
.profile-edit-form button {
  background: #ffeba7;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  font-weight: bold;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.profile-edit-form button:hover {
  background: #ffe066;
} 

/* --- MENU MOBILE RESPONSIVO --- */
.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  background: rgba(17, 24, 39, 0.98);
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2000;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
  padding: 1.5rem 0;
}
@media (max-width: 1024px) {
  .navbar-modern .container {
    flex-direction: row;
    gap: 0.5rem;
  }
  .nav-links {
    display: none !important;
  }
  #mobile-menu-toggle {
    display: block !important;
  }
  .nav-links-mobile {
    display: flex;
  }
}
@media (min-width: 1025px) {
  #mobile-menu-toggle {
    display: none !important;
  }
  .nav-links-mobile {
    display: none !important;
  }
}
/* Ajustes gerais para responsividade */
@media (max-width: 600px) {
  body, html {
    font-size: 15px;
  }
  .feature-card, .download-card {
    padding: 1rem;
    margin: 0 0.5rem 1rem 0.5rem;
  }
  .gallery-item img {
    border-radius: 0.5rem;
  }
  .footer-modern {
    padding: 1rem 0;
    font-size: 0.95em;
  }
  .card {
    width: 98vw;
    min-width: unset;
    padding: 1.2rem 0.5rem;
  }
}
@media (max-width: 400px) {
  .logo-brand {
    font-size: 1.2rem;
  }
  .download-animated-label .title {
    font-size: 13px;
    width: 80vw;
  }
} 

/* Garante que o botão hambúrguer aparece no mobile e fica acima de outros elementos */
#mobile-menu-toggle {
  display: block !important;
  position: relative;
  z-index: 3000;
  background: none;
  border: none;
  padding: 0.5rem;
}
@media (min-width: 1025px) {
  #mobile-menu-toggle {
    display: none !important;
  }
}
/* Ajusta o menu mobile para não ficar atrás de outros elementos */
#mobile-nav-menu {
  z-index: 2500 !important;
} 

/* --- MENU LATERAL (OFF-CANVAS) MOBILE --- */
#mobile-nav-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  transition: opacity 0.3s;
  align-items: stretch;
  justify-content: flex-start;
}
#mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
}
#mobile-nav-drawer {
  background: #181c2a;
  width: 80vw;
  max-width: 320px;
  height: 100vh;
  box-shadow: 2px 0 24px 0 rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s;
}
#mobile-nav-overlay.active #mobile-nav-drawer {
  transform: translateX(0);
}
#mobile-nav-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 1rem;
}
#mobile-nav-drawer .nav-link {
  font-size: 1.2rem;
  padding: 1rem 0;
  color: #d1d5db;
  border-radius: 0.5rem;
  text-align: left;
  width: 100%;
  display: block;
}
#mobile-nav-drawer .nav-link.active,
#mobile-nav-drawer .nav-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}
@media (min-width: 1025px) {
  #mobile-menu-toggle, #mobile-nav-overlay {
    display: none !important;
  }
} 
